fa2f321c28d96a093bb63be8a22ee097d4af6d93,etc/sample/app/src/org/jraf/androidcontentprovidergenerator/sample/provider/team/TeamCursor.java,TeamCursor,getCompanySerialNumberId,#,84
Before Change
* The serial number of this company.
*/
public long getCompanySerialNumberId() {
return getLongOrNull(CompanyColumns.SERIAL_NUMBER_ID);
}
/**
After Change
* The serial number of this company.
*/
public long getCompanySerialNumberId() {
Long res = getLongOrNull(CompanyColumns.SERIAL_NUMBER_ID);
if (res == null)
throw new NullPointerException("The value of 'serial_number_id' in the database was null, which is not allowed according to the model definition");
return res;
}
/**